home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / utilities / gmdev300.lha / Include / libraries / vmem.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-22  |  771 b   |  28 lines

  1. #ifndef LIBRARIES_VMEM_H
  2. #define    LIBRARIES_VMEM_H
  3. /*
  4. **    $Filename: libraries/vmem.h $
  5. **    $Release: 1.0 Includes, V1.0 $
  6. **    $Revision: 1.0 $
  7. **    $Date: 21-04-92 $
  8. **
  9. **    External definitions for vmem.library
  10. **
  11. **    (C) Copyright 1992 Ch. Schneider, Relog AG
  12. **        All Rights Reserved
  13. */
  14.  
  15. #define VMEMNAME    "vmem.library"
  16.  
  17. /*----- Memory Requirement Types ---------------------------*/
  18. /*----- See the VMAllocMem() documentation for details -----*/
  19.  
  20. /* flags for the VMAllocMem() call */
  21. #define VMEMF_VIRTUAL   (1L<<0)  /* Force virtual memory */
  22.  
  23. #define VMEMF_VIRTPRI   (1L<<16) /* Preferably virtual memory */
  24. #define VMEMF_PHYSPRI   (1L<<17) /* Preferably physical memory */
  25. #define VMEMF_ALIGN     (1L<<18) /* Try to align to page base */
  26.  
  27. #endif /* LIBRARIES_VMEM_H */
  28.